ddns-scripts: fix daemon start - background the script
authorPaul Donald <[email protected]>
Fri, 11 Apr 2025 14:18:59 +0000 (16:18 +0200)
committerFlorian Eckert <[email protected]>
Fri, 18 Apr 2025 16:06:14 +0000 (18:06 +0200)
omitted the ampersand in the re-factor in commit
a36167288227c753b8a57ef875ff3eb8e6dd510a

Signed-off-by: Paul Donald <[email protected]>
net/ddns-scripts/files/usr/lib/ddns/dynamic_dns_functions.sh

index 297388a15981fa6e4a286bed77a9345647ffdaea..f8d0a6675bf464561193b783e8f43e1ee5af891e 100644 (file)
@@ -190,7 +190,7 @@ start_daemon_for_all_ddns_sections()
        for section_id in $sections; do
                config_get configured_if "$section_id" interface "wan"
                [ -z "$event_if" ] || [ "$configured_if" = "$event_if" ] || continue
-               /usr/lib/ddns/dynamic_dns_updater.sh -v "$VERBOSE" -S "$section_id" -- start
+               /usr/lib/ddns/dynamic_dns_updater.sh -v "$VERBOSE" -S "$section_id" -- start &
        done
 }